home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0082 / 78.txt < prev    next >
Text File  |  1997-04-16  |  12KB  |  276 lines

  1.  
  2. INFO-ATARI16 Digest         Mon, 22 Jan 90       Volume 90 : Issue   78
  3.  
  4. Today's Topics:
  5.                                 Elite!
  6.                    GNU-Emacs 18.55, binary patch #1
  7.                    ST Technical Questions (2 msgs)
  8.                       TOS executable file format
  9.                VIP Professional, Streaks on the screen
  10.                               Wordup 2.0
  11. ----------------------------------------------------------------------
  12.  
  13. Date: 22 Jan 90 04:46:13 GMT
  14. From: dartvax!eleazar.dartmouth.edu!dav@CS.BU.EDU  (William David Haas)
  15. Subject: Elite!
  16. Message-ID: <18716@dartvax.Dartmouth.EDU>
  17.  
  18. In article <7541@shlump.nac.dec.com> gleason@clt.dec.com (Daryl Gleason) writes:
  19. >    I haven't actually tried it.  However, the following is from my Elite
  20. >manual, page 35, under "Escape Capsule" (grammatical errors are theirs, too):
  21. >
  22. explaination deleted
  23.  
  24.  
  25. I have tried it.  I have tried escaping in the same system.  I have tried
  26. hyper jumping to a new system (that I have never been too) and escaping.
  27. I have done this with offender status and with fugitive status.
  28.  
  29. Nothing has worked.  I can't get my status to clean.  I have now logged in
  30. 15 hours with my current game and haven't been approached for the missions.
  31. I assume this is because of my legal status.
  32.  
  33. ------------------------------
  34.  
  35. Date: 18 Jan 90 18:09:04 GMT
  36. From: mcsun!unido!sbsvax!roeder@uunet.uu.net  (Edgar Roeder)
  37. Subject: GNU-Emacs 18.55, binary patch #1
  38. Message-ID: <2231@sbsvax.UUCP>
  39.  
  40. /*
  41. [Please don't ask me where emacs is, it's posted and will come soon!]
  42.  
  43. This is the first (binary) patch to my last release of GNU-Emacs for the st.
  44. Yesterday i discovered this nasty little bug in the timer routines for emacs
  45. and i found a rather short solution to patch it.
  46. Although you might not have received the posting yet, please keep the
  47. appended little C-program. Then after you got the posted version of temacs
  48. compile it and run without parameters to patch temacs.
  49. The corrected bug may never hit you (it's hard to reproduce and *very* time
  50. critical), but if it does, hours of work may be lost.
  51.  
  52.         - Edgar
  53. */
  54.  
  55. #include <osbind.h>
  56.  
  57. main()
  58. ?
  59.         int     fd;
  60.         short   patch_area[16];
  61.  
  62.         if((fd = Fopen("temacs",2)) < 0) Pterm(1);
  63.         Fseek(232092L, fd, 0);
  64.         Fread(fd, 28, patch_area+1);
  65.         patch_area[0] = 0x40E7;
  66.         patch_area[15] = 0x4E77;
  67.         Fseek(-28L, fd, 1);
  68.         Fwrite(fd, 32, patch_area);
  69.         Fclose(fd);
  70. ?
  71. --
  72.  
  73. Mail:  Edgar R\"oder                    E-Mail: roeder@cs.uni-sb.de
  74.        Liesbet-Dill-Stra\ss e 3
  75. D-6602 Dudweiler                               -o-   -o-
  76.        W-Germany                                   ~
  77. Phone: 06897/74643                               '---'
  78.  
  79. ------------------------------
  80.  
  81. Date: 22 Jan 90 03:03:36 GMT
  82. From: cs.utexas.edu!jarvis.csri.toronto.edu!utgpu!barry@tut.cis.ohio-state.edu
  83.  (Barry Lay)
  84. Subject: ST Technical Questions
  85. Message-ID: <1990Jan22.030336.7741@gpu.utcs.utoronto.ca>
  86.  
  87. Hello,
  88.   I have several questions about programming on the ST that I can not answer
  89. with my current documentation.  I am asking all of these at once in the hope
  90. that it will reduce network load.  For the same reason, please respond to me
  91. rather than the net, and I will summarize and post if there is some interest.
  92. If you must use followup, please don't include the whole note to answer one
  93. question and help those guys (like me) who are using modems.
  94.  
  95. For reference, here are some possibly relevant background facts.  I am using
  96. an Atari Mega ST4 with an attached SH204 hard drive and a SF314 external
  97. disk (in addition to the internal one).  It has a standard SC1224 colour
  98. monitor.  The GEMDOS Sversion() call returns 0x1300, and I am using Lattice
  99. C for development.  The MENU+ appears to be at the 1.1 level, and the compiler
  100. reports version 3.03.  The desktop info box doesn't have a version listed, but
  101. it does have a copyright notice for 1986 and 1987.
  102.  
  103. 1. I have a program which builds object trees dynamically.  It seems to have
  104.    problems when the tree gets more than ten (10) levels deep.  That is, the
  105.    number of objects within objects within ... gets to ten.  The objc_draw()
  106.    call bombs if I ask it to draw the whole thing, and objc_find() stops at
  107.    the tenth level, even though there are offspring objects which are
  108.    selectable.  Is this a design limitation?  The mentioned routines would
  109.    have to specially check for this limit, as anything modelled after Tim
  110.    Oren's map_tree() wouldn't do this.
  111.  
  112. 2. While playing around with Mr. Oren's "New Form Manager", I noticed that
  113.    as the program gets more complex, it becomes easier to crash it by moving
  114.    the mouse around quickly.  I presume that the rectangle waits are falling
  115.    behind the action and some internal event queue is getting overloaded.
  116.    Is there any way to overcome this?  I shudder to think of the effort
  117.    involved in handling all of the Ikbd interrupts myself.  Has anyone done
  118.    this sort of thing?
  119.  
  120. 3. When I select a command from the MENU+ window, I frequently get a blank
  121.    text screen with nothing happening.  I discovered that the application
  122.    appears to be waiting for an interrupt or something, because if I move
  123.    the mouse even a little bit, the program takes off.  I would write this
  124.    off as a MENU+ bug, except that I have occasionally seen this happen
  125.    with the desktop when selecting a program to run.  Has anyone else seen
  126.    this one?
  127.  
  128. 4. Speaking of the desktop, I have noticed that the mouse position for closing
  129.    a window is very picky.  I suppose that you wouldn't want the window to
  130.    close accidently, but this is silly.  I have even managed to get the close
  131.    box to invert (selected), but not have the window close.  Could this be a
  132.    hardware problem?
  133.  
  134. 5. There was mention of a "Pexec cookbook" a while back.  Could someone please
  135.    send me the reference to that?
  136.  
  137. 6. I see a number of neighbours submitting to the net.  Where do you folks go
  138.    for Atari service and documentation in Toronto?  Is TOS 1.4 available here?
  139.    I am also having fun finding most of the popular "hacker's" books.  It is
  140.    largely hit and miss, mostly miss.  I have found some of the Abacus books
  141.    and the third COMPUTE Technical Reference (TOS).  I would love to get the
  142.    first two.
  143.  
  144. 7. My hard disk quite often develops an annoying buzzing sound, like mosquitos
  145.    are trapped inside.  Tapping the box makes it go away (for a short while),
  146.    but I don't like moving a running hard disk.  Is there some component which
  147.    needs to be glued down inside?
  148.  
  149. 8. I borrowed a 1040 STf a few weeks ago.  I noticed that it was noticeably
  150.    slower than the Mega, especially for following mouse events.  It was
  151.    particularly bad for a game I wrote which does a lot of blitting, even
  152.    when the blitter was turned off with the desktop menu on the Mega.
  153.    It is the same processor, isn't it?
  154.  
  155. 9. Is there an editor which emulates either MacWrite or EDT out there?  I am
  156.    not much of an Emacs fan.
  157.  
  158. I am working on a graphically oriented multitasking system, mostly for my own
  159. edification.  I would be interested in conversing with others who have either
  160. done this sort of thing or who have ideas.
  161.  
  162. On the note of marketing, a Toronto radio station is giving Portfolios away as
  163. a prize for one of their contests.
  164.  
  165. Thanks in advance,
  166.  
  167. Barry Lay
  168. Statistical and Numerical Analysis Computing Supervisor
  169. University of Toronto Computing Services
  170. Toronto, Ontario, Canada
  171.  
  172. ------------------------------
  173.  
  174. Date: 22 Jan 90 07:17:53 GMT
  175. From: cs.utexas.edu!jarvis.csri.toronto.edu!utgpu!barry@tut.cis.ohio-state.edu
  176.  (Barry Lay)
  177. Subject: ST Technical Questions
  178. Message-ID: <1990Jan22.071753.17009@gpu.utcs.utoronto.ca>
  179.  
  180. Hello,
  181.   I forgot a few questions when I posted the first note.
  182.  
  183. 10. I have an application which tracks the mouse cursor in and out of a
  184.     window by doing a rectangle wait for the window work area in addition
  185.     to the standard message wait.  I trap the various messages which move
  186.     or change the window to keep the rectangle in the right place.  With
  187.     more than one window on the screen, I trap the WM_TOP message to set
  188.     the new rectangle.  However, closing a window doesn't seem to send a
  189.     WM_TOP message for the newly active window.  I can disable the rectangle
  190.     wait on window close, but I would really like to find the new window
  191.     and do it right.  Does anybody have an answer for this?
  192.  
  193. 11. I got my ST second hand, and I am probably missing some documentation.
  194.     What does the "install application" function do, and how do I use it?
  195.     I had the impression that I could change the application that would
  196.     automatically launch if I double-clicked on a non-program file, but
  197.     I can't get it to do anything.
  198.  
  199. 12. What sort of fonts can I load with the vst_load_fonts() call?  Is this
  200.     a GDOS question (whatever that is)?
  201.  
  202. Thanks again.
  203.  
  204. Barry Lay
  205.  
  206. ------------------------------
  207.  
  208. Date: 18 Jan 90 18:05:27 GMT
  209. From: mcsun!ukc!harrier.ukc.ac.uk!mtp@uunet.uu.net  (M.T.Paley)
  210. Subject: TOS executable file format
  211. Message-ID: <3651@harrier.ukc.ac.uk>
  212.  
  213. Does anyone know the exact format of executable files? The initial 20 or so
  214. bytes are easy to decypher but I cannot find any information on the layout
  215. of the symbol table and especially the relocation information.
  216.  
  217. I am trying to make a program to run TOS executables from within MINIX which
  218. looks fairly easy except for actually producing an executable image in
  219. memory from a mysterious .ttp file.
  220.  
  221. Any information would be usefull.
  222.  
  223.                 Matthew
  224.  
  225. ------------------------------
  226.  
  227. Date: 18 Jan 90 15:06:07 GMT
  228. From: mcsun!unido!laura!klute%heike.informatik.uni-dortmund.de@uunet.uu.net
  229.  (Rainer Klute)
  230. Subject: VIP Professional, Streaks on the screen
  231. Message-ID: <1908@laura.UUCP>
  232.  
  233. In article <90Jan16.202216est.57898@ugw.utcs.utoronto.ca>
  234.  FCTY7284@RYERSON.BITNET ("Hiscocks, Peter") writes:
  235. >I'm running VIP on a Mega 2, mono screen, and the display gets horizontal
  236. > streaks at random places. I dimly remember this as being related to the
  237. > blitter, but turning it off has no effect. Any ideas from net land?
  238. >                                   Peter
  239.  
  240. Hmm, do you have GDOS (or equivalent) loaded? Without GDOS VIP
  241. runs quite fine on my ST (except that it is awfully slow, as we
  242. all know).
  243.  
  244.   Dipl.-Inform. Rainer Klute      klute@heike.informatik.uni-dortmund.de
  245.   Univ. Dortmund, IRB             klute@unido.uucp, klute@unido.bitnet
  246.   Postfach 500500         |)|/    ...uunet!mcvax!unido!klute
  247. D-4600 Dortmund 50        |\|\    Tel.: +49 231 755-4663
  248.  
  249. ------------------------------
  250.  
  251. Date: 22 Jan 90 04:22:09 GMT
  252. From:
  253.  jarvis.csri.toronto.edu!neat.cs.toronto.edu!omicron.cs.fsu.edu!fsucs.cs.fsu.edu
  254.  !boyd@rutgers.edu  (Mickey Boyd)
  255. Subject: Wordup 2.0
  256. Message-ID: <9001220423.AA02669@fsucs.cs.fsu.edu>
  257.  
  258. Anybody received the new version of Wordup?  What new features does it have?
  259. What bugs were fixed?  Postscript output?  Inquiring minds want to know!!
  260.  
  261.  
  262. --
  263.  
  264.     -----------------------------------------------------------------------
  265.     ---------------------------------+-------------------------------------
  266.          Mickey Boyd                 |    "Nobody can be exactly like me.
  267.                                      |      Even I have trouble doing it."
  268.              FSU Comp Sci            |              - Tallulah Bankhead
  269.     ---------------------------------+-------------------------------------
  270.     -----------------------------------------------------------------------
  271.  
  272. ------------------------------
  273.  
  274. End of INFO-ATARI16 Digest V90 Issue #78
  275. ****************************************
  276.